100 |
How can I remove an event
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .AutoSize = False .FixedCellWidth = 36 .Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" .Events.Add(Calendar1.Date).Image = 1 .Events.Remove Calendar1.Date End With End Function </SCRIPT> </BODY> |
99 |
How can I count the events
|
98 |
How can I clear all events
|
97 |
How can I save the events in the calendar
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() End Function </SCRIPT> </BODY> |
96 |
How can I assign an icon to a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .AutoSize = False .FixedCellWidth = 36 .Images "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" .Events.Add(Calendar1.Date).Image = 1 End With End Function </SCRIPT> </BODY> |
95 |
How can I enable or disable a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).Disabled = True End With End Function </SCRIPT> </BODY> |
94 |
How can I mark or highlight a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).Marker = True End With End Function </SCRIPT> </BODY> |
93 |
How can I assign a tooltip or a comment to a date
|
92 |
How can I assign any extra data to a date
|
91 |
How can I change the background color for a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).BackColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
90 |
How can I change the foreground color for a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).ForeColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
89 |
How can I draw a date as strikeout
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).StrikeOut = True End With End Function </SCRIPT> </BODY> |
88 |
How can I underline a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).Underline = True End With End Function </SCRIPT> </BODY> |
87 |
How can I make italic a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).Italic = True End With End Function </SCRIPT> </BODY> |
86 |
How can I bold a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Events.Add(Calendar1.Date).Bold = True End With End Function </SCRIPT> </BODY> |
85 |
How can I get the last visible date being displayed in the calendar
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowNonMonthDays = False .Events.Add(Calendar1.LastVisibleDate).Comment = "This is the last visible date" End With End Function </SCRIPT> </BODY> |
84 |
How can I get the first visible date being displayed in the calendar
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowNonMonthDays = False .Events.Add(Calendar1.FirstVisibleDate).Comment = "This is the first visible date" End With End Function </SCRIPT> </BODY> |
83 |
How can I hide the ticker that's shown for dates that have a tooltip or a comment
|
82 |
How can I change the visual aspect of the dates that have a comment or a tooltip assigned
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .CommentBackColor = &H1000000 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
81 |
How can I change the visual aspect of the dates that have a comment or a tooltip assigned
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 With .VisualAppearance .Add 11,"c:\exontrol\images\normal.ebn" .Add 1,"CP:11 4 2 -2 -2" End With .CommentBackColor = &H1000000 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
80 |
How can I change the color to highlight the dates that have a comment or a tooltip assigned
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .CommentBackColor = RGB(0,0,0) .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
79 |
How can I hide the days that are shown in gray, and doesn' belong to the month
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowNonMonthDays = False End With End Function </SCRIPT> </BODY> |
78 |
How can I change the color for non working days
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .NonworkingDays = 6 .NonworkingDaysPattern = 10 .NonworkingDaysColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
77 |
How can I change the pattern or the style to draw the non working days
|
76 |
How can I show or hide the non working days
|
75 |
How can I specify the non working days
|
74 |
How do I get the height of the control to fit the MaxMonthY months in the client area
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() End Function </SCRIPT> </BODY> |
73 |
How do I get the width of the control to fit the MaxMonthX months in the client area
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() End Function </SCRIPT> </BODY> |
72 |
How can I specify the min and max years to scroll within
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .MinScrollYear = 2001 .MaxScrollYear = 2010 End With End Function </SCRIPT> </BODY> |
71 |
How do I let the tooltip being displayed longer
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipPopDelay = 10000 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
70 |
How can I save the selected dates
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() End Function </SCRIPT> </BODY> |
69 |
How can I change the date that gets the focus
|
68 |
How can I select a new date
|
67 |
I've seen that the width of the tooltip is variable. Can I make it larger
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipWidth = 328 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
66 |
How do I disable showing the tooltip for all control
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipDelay = 0 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
65 |
How do I show the tooltip quicker
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipDelay = 1 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
64 |
How do I call your x-script language
|
63 |
How do I call your x-script language
|
62 |
Can I change the font for the tooltip
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipDelay = 1 With .ToolTipFont .Name = "Tahoma" .Size = 14 End With .ToolTipWidth = 364 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
61 |
How can I change the caption of the Today's button
|
60 |
How do I get the date from the cursor
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() End Function </SCRIPT> </BODY> |
59 |
How do I unselect a date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .SingleSel = False .Date = #1/1/2001# .SelDate = #1/2/2001# .SelDate = #1/3/2001# .SelDate = #1/4/2001# .UnSelDate #1/3/2001# End With End Function </SCRIPT> </BODY> |
58 |
How do I get the list of selected dates
<BODY onload="Init()"> <SCRIPT LANGUAGE="VBScript"> Function Calendar1_SelectionChanged() With Calendar1 alert( .SelDate ) End With End Function </SCRIPT> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() End Function </SCRIPT> </BODY> |
57 |
How do I select multiple dates
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .SingleSel = False .Date = #1/1/2001# .SelDate = #1/2/2001# .SelDate = #1/3/2001# .SelDate = #1/4/2001# End With End Function </SCRIPT> </BODY> |
56 |
How do I get the selected date
|
55 |
How can I build a date expression
|
54 |
How can I select a new date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Date = .DoDate(2001,1,1) .SelDate = .DoDate(2001,1,2) End With End Function </SCRIPT> </BODY> |
53 |
How can I select a new date
|
52 |
How can I change the browsed date
|
51 |
How can I show or hide the buttons that in the header
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowYearSelector = False .ShowMonthSelector = False End With End Function </SCRIPT> </BODY> |
50 |
How can I show or hide the buttons that scrolls the years
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowYearSelector = False End With End Function </SCRIPT> </BODY> |
49 |
How can I disable changing the month in the months selector
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowMonthSelector = False End With End Function </SCRIPT> </BODY> |
48 |
How can I change the visual aspect of the selected date, using your EBN
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .BackColor = RGB(255,255,255) .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .SelBackColor = &H1000000 .SelForeColor = .BackColor End With End Function </SCRIPT> </BODY> |
47 |
How can I change the colors for selected dates
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .SelBackColor = RGB(0,0,0) .SelForeColor = RGB(255,255,255) End With End Function </SCRIPT> </BODY> |
46 |
How can I change the color of the line arround a month
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .DrawBorderLine = 2 .BorderLineColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
45 |
How can I change the style of the line arround a month
|
44 |
How can I specify the number of months being displayed
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowTodayButton = False .ShowYearScroll = False .MinMonthX = 2 .MaxMonthX = 2 .MinMonthY = 2 .MaxMonthY = 2 End With End Function </SCRIPT> </BODY> |
43 |
How can I lock the control, so user can't select a new date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Locked = True End With End Function </SCRIPT> </BODY> |
42 |
How do I change the first day of the week
|
41 |
How do I change the name of the months
|
40 |
How do I change the name of the months
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .MonthName(1) = "Jan" .MonthName(2) = "Feb" .MonthName(3) = "Mar" .MonthName(4) = "Apr" .MonthName(5) = "May" .MonthName(6) = "Jun" .MonthName(7) = "Jul" .MonthName(8) = "Aug" .MonthName(9) = "Sep" .MonthName(10) = "Oct" .MonthName(11) = "Nov" .MonthName(12) = "Dec" End With End Function </SCRIPT> </BODY> |
39 |
How do I change the name for each week day
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .AutoSize = False .FixedCellWidth = 24 .FixedCellHeight = 16 .WeekDays = "Su Mo Tu We Th Fr Sa" .HeaderForeColor = RGB(255,0,0) .HeaderBackColor = RGB(255,255,255) End With End Function </SCRIPT> </BODY> |
38 |
How can I specify the width and height for dates being displayed in the calendar
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .AutoSize = False .FixedCellWidth = 22 .FixedCellHeight = 16 End With End Function </SCRIPT> </BODY> |
37 |
How can I specify the width and height for dates being displayed in the calendar
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .AutoSize = False .FixedCellWidth = 32 .FixedCellHeight = 24 End With End Function </SCRIPT> </BODY> |
36 |
How do I change the appearance for dates in the calendar
|
35 |
How do I specify the color for the grid lines
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .DrawGridLine = 1 .GridLineColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
34 |
How do I draw the grid lines
|
33 |
How do I change the foreground color for the week days and week numbers header
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .HeaderForeColor = RGB(255,0,0) .ShowWeeks = True End With End Function </SCRIPT> </BODY> |
32 |
How do I change the background color for the week days and week numbers header
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .HeaderBackColor = RGB(255,0,0) .ShowWeeks = True End With End Function </SCRIPT> </BODY> |
31 |
How can I show or hide the 'Today' button
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowTodayButton = False End With End Function </SCRIPT> </BODY> |
30 |
How can I show or hide the scroll bar that changes the year
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowYearScroll = False End With End Function </SCRIPT> </BODY> |
29 |
How can I show or hide the header that displays the months
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowMonth = False End With End Function </SCRIPT> </BODY> |
28 |
How can I show or hide the header that displays the week days
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowDays = False End With End Function </SCRIPT> </BODY> |
27 |
How do I show or hide the weeks
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ShowWeeks = True End With End Function </SCRIPT> </BODY> |
26 |
How can I change the visual appearance of Today date in the calendar
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .MarkToday = True .Background(14) = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
25 |
How do I mark the Today date
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .MarkToday = True End With End Function </SCRIPT> </BODY> |
24 |
How can I show the control's selection even if the control loses the focus
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .HideSelection = False End With End Function </SCRIPT> </BODY> |
23 |
How can I hide the control's selection when the control loses the focus
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .HideSelection = True End With End Function </SCRIPT> </BODY> |
22 |
How do I enable single selection
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .SingleSel = True End With End Function </SCRIPT> </BODY> |
21 |
How do I enable multiple selection
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .SingleSel = False End With End Function </SCRIPT> </BODY> |
20 |
How do I disable or enable the control
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .Enabled = False End With End Function </SCRIPT> </BODY> |
19 |
Can I change the forecolor for the tooltip
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipDelay = 1 .ToolTipWidth = 364 .Background(66) = RGB(255,0,0) .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
18 |
Can I change the background color for the tooltip
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipDelay = 1 .ToolTipWidth = 364 .Background(65) = RGB(255,0,0) .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
17 |
Can I change the default border of the tooltip, using your EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ToolTipDelay = 1 .ToolTipWidth = 364 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(64) = &H1000000 .Events.Add(Calendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date" .HideSelection = True End With End Function </SCRIPT> </BODY> |
16 |
How can I change the visual appearance of the selected month, in the months selector, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(15) = &H1000000 .Background(16) = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
15 |
How can I change the visual appearance of Today date in the calendar, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\pushed.ebn" .Background(14) = &H1000000 .Background(20) = RGB(1,0,0) .SelForeColor = RGB(0,0,0) .MarkToday = True End With End Function </SCRIPT> </BODY> |
14 |
How can I change the visual appearance of separator between calendar and 'Today' button , using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(13) = &H1000000 End With End Function </SCRIPT> </BODY> |
13 |
How can I change the visual appearance of the scrolling bar for years, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .VisualAppearance.Add 2,"c:\exontrol\images\pushed.ebn" .Background(12) = &H1000000 .Background(11) = &H2000000 End With End Function </SCRIPT> </BODY> |
12 |
How can I change the visual appearance of 'Today' button, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .VisualAppearance.Add 2,"c:\exontrol\images\pushed.ebn" .Background(9) = &H1000000 .Background(10) = &H2000000 End With End Function </SCRIPT> </BODY> |
11 |
How can I change the visual appearance of header , using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(8) = &H1000000 .HeaderForeColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
10 |
How can I change the visual appearance of header that week numbers, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(7) = &H1000000 .HeaderForeColor = RGB(255,0,0) .ShowWeeks = True End With End Function </SCRIPT> </BODY> |
9 |
How can I change the visual appearance of header that displays days, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(6) = &H1000000 End With End Function </SCRIPT> </BODY> |
8 |
How can I change the visual appearance of the drop down button, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .VisualAppearance.Add 2,"c:\exontrol\images\pushed.ebn" .Background(4) = &H1000000 .Background(5) = &H2000000 End With End Function </SCRIPT> </BODY> |
7 |
How do I change the visual appearance of the left and right buttons in the calendar's header, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(2) = &H1000000 .Background(3) = &H1000000 End With End Function </SCRIPT> </BODY> |
6 |
How do I change the visual appearance of the up and down buttons in the calendar's header, using EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Background(0) = &H1000000 .Background(1) = &H1000000 End With End Function </SCRIPT> </BODY> |
5 |
How do I change the control's foreground color
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .ForeColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |
4 |
How do I change the control's background color
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .BackColor = RGB(200,200,200) End With End Function </SCRIPT> </BODY> |
3 |
How can I change the control's font
|
2 |
How do I change the control's border, using your EBN files
<BODY onload="Init()"> <OBJECT CLASSID="clsid:D8F4D09C-3FD1-4479-ABA3-4F195C20050C" id="Calendar1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Calendar1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Appearance = 16777216 ' &H1000000 End With End Function </SCRIPT> </BODY> |
1 |
How do I remove the control's border
|